View Javadoc

1   package uba.db.table.io;
2   
3   
4   /***
5    * @version $Revision: 1.1 $
6    */
7   public class FetchRowException extends RuntimeException {
8       private static final long serialVersionUID = 3544949961273193017L;
9   
10      public FetchRowException() {
11          super();
12      }
13  
14      public FetchRowException(Throwable cause) {
15          super(cause);
16      }
17  }